home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 11 Learning / 09 Laramée / Chromosome.h next >
Encoding:
C/C++ Source or Header  |  2001-08-22  |  361 b   |  16 lines

  1. /****************************************************************
  2.  * CLASS Chromosome
  3.  * The genetic material for our troll.  Very simple indeed.
  4.  ***************************************************************/
  5.  
  6. #ifndef CHROMOSOME_H
  7. #define CHROMOSOME_H
  8.  
  9. #include "Globals.h"
  10.  
  11. struct Chromosome
  12. {
  13.     double Priorities[ ALL_PRIORITIES ];
  14. };
  15.  
  16. #endif